projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4af2431
)
Tweak dns-mode font-lock
author
Peder O. Klingenberg
<peder@klingenberg.no>
Fri, 5 May 2017 18:03:04 +0000
(14:03 -0400)
committer
Glenn Morris
<rgm@gnu.org>
Fri, 5 May 2017 18:03:04 +0000
(14:03 -0400)
* lisp/textmodes/dns-mode.el (dns-mode-font-lock-keywords):
Highlight $TTL as a control entity. (Bug#26780)
lisp/textmodes/dns-mode.el
patch
|
blob
|
history
diff --git
a/lisp/textmodes/dns-mode.el
b/lisp/textmodes/dns-mode.el
index 02cb2a2876d6a5789106c7eaeba99b8f931c161c..01f509d9136aa926b0b2975fbf6f1ed8f789da97 100644
(file)
--- a/
lisp/textmodes/dns-mode.el
+++ b/
lisp/textmodes/dns-mode.el
@@
-79,6
+79,7
@@
(defcustom dns-mode-font-lock-keywords
`(("^$ORIGIN" 0 ,dns-mode-control-entity-face)
("^$INCLUDE" 0 ,dns-mode-control-entity-face)
+ ("^$TTL" 0 ,dns-mode-control-entity-face)
("^$[a-z0-9A-Z]+" 0 ,dns-mode-bad-control-entity-face)
(,(regexp-opt dns-mode-classes) 0 ,dns-mode-class-face)
(,(regexp-opt dns-mode-types) 0 ,dns-mode-type-face))